home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
PERL
/
T
/
OP
/
ORD.T
< prev
next >
Wrap
Text File
|
1991-04-28
|
276b
|
15 lines
#!./perl
# $Header: ord.t,v 4.0 91/03/20 01:53:50 lwall Locked $
print "1..2\n";
# compile time evaluation
if (ord('A') == 65) {print "ok 1\n";} else {print "not ok 1\n";}
# run time evaluation
$x = 'ABC';
if (ord($x) == 65) {print "ok 2\n";} else {print "not ok 2\n";}